home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1997, 1998 Aladdin Enterprises. All rights reserved.
-
- This file is part of AFPL Ghostscript.
-
- AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
- distributor accepts any responsibility for the consequences of using it, or
- for whether it serves any particular purpose or works at all, unless he or
- she says so in writing. Refer to the Aladdin Free Public License (the
- "License") for full details.
-
- Every copy of AFPL Ghostscript must include a copy of the License, normally
- in a plain ASCII text file named PUBLIC. The License grants you the right
- to copy, modify and redistribute AFPL Ghostscript, but only under certain
- conditions described in the License. Among other things, the License
- requires that the copyright notice and this notice be preserved on all
- copies.
- */
-
- /*$Id: gsiparm2.h,v 1.2 2000/09/19 19:00:29 lpd Exp $ */
- /* ImageType 2 image parameter definition */
-
- #ifndef gsiparm2_INCLUDED
- # define gsiparm2_INCLUDED
-
- #include "gsiparam.h"
-
- /* Opaque type for a path */
- #ifndef gx_path_DEFINED
- # define gx_path_DEFINED
- typedef struct gx_path_s gx_path;
- #endif
-
- /*
- * See Section 7.1 of the Adobe PostScript Version 3010 Supplement
- * for a definition of ImageType 2 images.
- */
-
- typedef struct gs_image2_s {
- gs_image_common;
- gs_state *DataSource;
- float XOrigin, YOrigin;
- float Width, Height;
- /*
- * If UnpaintedPath is not 0, any unpainted path will be appended to it.
- */
- gx_path *UnpaintedPath;
- bool PixelCopy;
- } gs_image2_t;
- #define private_st_gs_image2() /* in gximage2.c */\
- extern_st(st_gs_image_common);\
- gs_private_st_suffix_add2(st_gs_image2, gs_image2_t, "gs_image2_t",\
- image2_enum_ptrs, image2_reloc_ptrs, st_gs_image_common,\
- DataSource, UnpaintedPath)
-
- /*
- * Initialize an ImageType 2 image. Defaults:
- * UnpaintedPath = 0
- * PixelCopy = false
- */
- void gs_image2_t_init(P1(gs_image2_t * pim));
-
- #endif /* gsiparm2_INCLUDED */
-